home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / version.h < prev    next >
C/C++ Source or Header  |  1999-03-29  |  4KB  |  95 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: version.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/17/1997  
  9. // Date Last Modified: 03/30/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. This file contains the string database program's version number
  32. and all comments regarding bugs, fixes, and additions.
  33. */
  34. // ----------------------------------------------------------- //   
  35. #ifndef __VERSION_HPP
  36. #define __VERSION_HPP
  37.  
  38. // Program's version number
  39. const double VersionNumber = 1031.101;
  40.  
  41. #endif  // __VERSION_HPP //
  42.  
  43. // ----------------------------------------------------------- // 
  44. // -------------- Bugs, Fixes, and Additions  ---------------- // 
  45. // ----------------------------------------------------------- // 
  46. /*
  47. 03/20/1998 - Added Indexed searchs to the curses version.
  48. Changed by: Doug Gaer
  49.  
  50. 05/05/1998 - Corrected problem with wxWindows 132 column
  51. ASCII print function, not printing the complete Item Bar.
  52. Changed by: Doug Gaer
  53.  
  54. 05/05/1998 - Added Indexed ASCII print function in curses
  55. version.
  56. Changed by: Doug Gaer
  57.  
  58. 05/05/1998 - Added PostScript driver for curses and wxWindows
  59. version.
  60. Changed by: Doug Gaer
  61.  
  62. 05/26/1998 - Added MSW printing for wxWindows version.
  63. The __USE__MSW_PRINTING__ macro must be defined to enable
  64. this option. Added for Windows 95 version.
  65. Changed by: Doug Gaer
  66.  
  67. 05/28/1998 - Removed unused code from OFPrint, EHandler,
  68. and DTypes libraries.
  69. Changed by: Doug Gaer
  70.  
  71. 06/01/1998 - Corrected pointer problems in the wxWindows
  72. version display and change panels. The Change panel commit
  73. button no longer advances the doubly linked list pointer.
  74. Instead the object that was changed is displayed. The
  75. display panel next and prev buttons now detect the end and
  76. the begining of the doubly linked list and alerts the user.
  77. Changed by: Doug Gaer
  78.  
  79. 06/05/1998 - Corrected DeleteObject call in the Remove()
  80. function of the curses version.
  81. Changed by: Doug Gaer
  82.  
  83. 06/11/1998 - Corrected incorrect name strings in FindBy()
  84. function calls in the wxWindows version.
  85. Changed by: Doug Gaer
  86.  
  87. 03/30/1999 - Added HTML driver to wxWindows GUI and curses
  88. interface.
  89. Added by: Doug Gaer
  90. */
  91. // ----------------------------------------------------------- //   
  92. // ------------------------------- //
  93. // --------- End of File --------- //
  94. // ------------------------------- //
  95.